aa54cd2a2631db4d8c66cd160f510c10a9daccfa,plugins/devkit/src/dom/impl/PluginFieldNameConverter.java,PluginFieldNameConverter,fromString,#String#ConvertContext#,57
Before Change
public PsiField fromString(@Nullable @NonNls String s, ConvertContext context) {
PsiClass value = getEPBeanClass(context);
if (value == null) return null;
return value.findFieldByName(s, true);
}
@Nullable
After Change
if (s == null) return null;
PsiClass value = getEPBeanClass(context);
if (value == null) return null;
PsiField field = value.findFieldByName(s, true);
if (field != null) {
return field;
}